Canonical CI: grouped-tests.yml + root test/test_groups.toml#604
Merged
ChrisRackauckas merged 1 commit intoJun 8, 2026
Merged
Conversation
Convert the root test workflow (Tests.yml) to the canonical thin caller of SciML/.github/.github/workflows/grouped-tests.yml@v1, with the group x version matrix declared once in test/test_groups.toml at the repo root. The previous Tests.yml hand-maintained a version x group matrix (versions 1/lts/pre x groups InterfaceI/InterfaceII/QA, excluding pre+QA) calling tests.yml@v1. That exact 8-cell matrix is now reproduced by test_groups.toml: InterfaceI and InterfaceII on [lts, 1, pre], QA on [lts, 1]. runtests.jl already dispatches on the standard GROUP env var and already has a QA group, so no runtests.jl change is needed and no with: inputs are required (check-bounds, coverage, coverage-directories=src,ext, group-env-name=GROUP all match the grouped-tests.yml@v1 defaults). on: triggers and concurrency: are preserved verbatim; name: "Run Tests" is kept so branch-protection status checks are unaffected. All other workflow files are left untouched. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
RomanSahakyan03
added a commit
to RomanSahakyan03/JumpProcesses.jl
that referenced
this pull request
Jun 17, 2026
The grouped-tests.yml refactor (SciML#604) drives groups from test/test_groups.toml, which did not carry over the StochasticAD group the old Tests.yml matrix declared -- so CI was not running the BoundedSSA tests. runtests.jl already dispatches GROUP=StochasticAD into the isolated env (no special runner needed).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Converts the root test workflow (
Tests.yml) into the canonical thin caller ofSciML/.github/.github/workflows/grouped-tests.yml@v1, moving the test matrix into a new roottest/test_groups.toml.What changed
.github/workflows/Tests.yml: the hand-maintainedversion × groupmatrix job (which calledtests.yml@v1) is replaced by a thin caller:name: "Run Tests", theon:triggers (push/PR tomaster,paths-ignore: docs/**), and theconcurrency:block are all preserved verbatim, so branch-protection status checks are unaffected.test/test_groups.toml(new, repo root): declares the matrix once.No
with:inputs are needed:runtests.jlalready reads the standardGROUPenv var, andcheck-bounds(yes),coverage(true),coverage-directories(src,ext— this package has extensions) andgroup-env-name(GROUP) all match thegrouped-tests.yml@v1defaults that the old job was already using. Linux-only, so noosfield is added (defaultubuntu-latest). Noruntests.jlchange — theQA/InterfaceI/InterfaceIIGROUP dispatch already exists.Matrix match
Verified with
compute_affected_sublibraries.jl <root> --root-matrix(SciML/.github@v1). The emitted(group, version)set is 8/8 exact vs. the old workflow:Old matrix was
{1, lts, pre} × {InterfaceI, InterfaceII, QA}excludingpre + QA= 8 cells; the new TOML reproduces exactly those 8 cells. TOML and YAML both parse cleanly.QA
Category A (QA group already present in
runtests.jl), so static matrix-verify only; no local Aqua/JET run performed and no source changes. No QA exclusions were added.All other workflow files (Downgrade, Documentation, FormatCheck, GPU, SpellCheck, TagBot, DependabotAutoMerge, DocPreviewCleanup) are left untouched.
🤖 Generated with Claude Code
Ignore until reviewed by @ChrisRackauckas.